home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CICA Windows Explosion!
/
The CICA Windows Explosion! - Disc 2.iso
/
nt
/
ntfi15.zip
/
TIMER.H_
/
TIMER.H
Wrap
C/C++ Source or Header
|
1994-11-25
|
385b
|
31 lines
#ifndef __TIMER_H
#define __TIMER_H
#ifndef __WINDOWS_H
#include "windows.h"
#endif
class timer
{
DWORD begtime;
DWORD deltime;
public:
timer()
{
}
timer(DWORD deltime)
{
start(deltime);
}
void start(DWORD deltimex)
{
begtime = GetTickCount();
deltime = deltimex;
}
int chkelapse();
};
#endif